home *** CD-ROM | disk | FTP | other *** search
/ Delphi Informant Complete 1995 - 2000 / Delphi Informant Complete 1995 to 2000.iso / Delphi Informant Magazine Complete Works SOURCE CODE 1998.rar / 1998 / Mar / DI9803DB / ssserver / SSServer.dpr < prev    next >
Encoding:
Text File  |  1997-10-11  |  440 b   |  21 lines

  1. program SSServer;
  2.  
  3. uses
  4.   Forms,
  5.   ServerMain in 'ServerMain.pas' {Form1},
  6.   SSServer_TLB in 'SSServer_TLB.pas',
  7.   ServerAuto in 'ServerAuto.pas' {SystemStatusAuto: CoClass},
  8.   SysStatus in '..\Common\SysStatus.pas',
  9.   CompStream in '..\Common\CompStream.pas';
  10.  
  11. {$R *.RES}
  12.  
  13. {$R *.TLB}
  14.  
  15. begin
  16.   Application.ShowMainForm := false;
  17.   Application.Initialize;
  18.   Application.CreateForm(TForm1, Form1);
  19.   Application.Run;
  20. end.
  21.